ExternalFile
 
Component ExternalFile
External Binary File Converter
Component Level: High
Category: SW-Data
Typical Usage:
(Examples of a typical usage of the component in user code. For more information please see the page Component Code Typical Usage.)

Assume the component name "EFil1".

 MAIN.C

unsigned char ch
unsigned long size;

void main(void)
{
  /* Read the first byte from the given file */
  ch = EFil1_GetValue(0);  
  /* Read the second byte from the given file */
  ch = EFil1_GetValue(1); 
  /* Get size of the given file */
  size = EFil1_GetSize(); 
}